home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
UnrealScript Game Programming All in One
/
UnrealScriptGameProgrammingAllInOne.iso
/
UGPAIOListings
/
UGPAIOListingsCh05
/
HelloWorld
/
Classes
/
HelloWorldTwo (2).uc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-12-08
|
179 b
|
12 lines
class HelloWorldTwo extends Commandlet;
function int Main(string Args)
{
log("*************");
log("Hello World Two!");
log("*************");
return 0;
}